Ktor CRUDRepo Client
class KtorCRUDRepoClient<ObjectType, IdType, InputValue>(readDelegate: ReadCRUDRepo<ObjectType, IdType>, writeDelegate: WriteCRUDRepo<ObjectType, IdType, InputValue>) : CRUDRepo<ObjectType, IdType, InputValue>
Content copied to clipboard
Constructors
Link copied to clipboard
fun <ObjectType, IdType, InputValue> KtorCRUDRepoClient(readDelegate: ReadCRUDRepo<ObjectType, IdType>, writeDelegate: WriteCRUDRepo<ObjectType, IdType, InputValue>)
Content copied to clipboard
Types
Functions
Link copied to clipboard
open suspend override fun create(values: List<InputValue>): List<ObjectType>
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open suspend override fun getByPagination(pagination: Pagination): PaginationResult<ObjectType>
Content copied to clipboard
Link copied to clipboard
open suspend override fun update(values: List<UpdatedValuePair<IdType, InputValue>>): List<ObjectType>
Content copied to clipboard
open suspend override fun update(id: IdType, value: InputValue): ObjectType?
Content copied to clipboard